import angular from 'angular';
import 'core-js/fn/array/from';
import 'angular-ui-bootstrap';
import 'angular-sanitize';
import 'ui-select';
import choicesTemplate from './template/selectize/choices.pug';
import matchTemplate from './template/selectize/match.pug';
import hirlevel from '../applications/hirlevel/hirlevel';
import toggleNavbar from '../modules/navbar/toggleNavbar';
import editedModal from './modal/modal';
const MODULE_NAME = 'common';
angular.module(MODULE_NAME, ['ui.bootstrap', 'ngSanitize', 'ui.select', hirlevel, editedModal, toggleNavbar]).run(function($templateCache) {
'ngInject';
$templateCache.put('selectize/choices.tpl.html', choicesTemplate());
$templateCache.put('selectize/match.tpl.html', matchTemplate());
});
export default MODULE_NAME; |